    /* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #034295; 
  background-color: #f7faff;
  line-height: 1.6;
  scroll-behavior: smooth;
}



/* Hero Section */
.hero-sections {
    display: flex;
    flex-direction: column;
  background-color: #034295;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero-sections h1 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.hero-sections h2 {
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.hero-sections p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 1rem;
}


/* Ticket Sections */
.ticket-section {
  padding: 60px 20px;
  text-align: center;
}

.ticket-section h2 {
  font-size: 1.8rem;
  color: #034295;
  margin-bottom: 20px;
}

.ticket-section p {
  max-width: 800px;
  margin: 0 auto 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}

.service-list li {
  margin: 8px 0;
  padding: 10px 15px;
  border-left: 3px solid #034295;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-list li:hover {
  background-color: #034295;
  color: white;
  transform: translateX(10px);
}

.routes {
  font-weight: 500;
  margin-top: 25px;
}

/* Why Choose Section */
.why-choose {
  background-color: #eaf0f8;
  text-align: center;
  padding: 60px 20px;
}

.why-choose h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.why-choose ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.why-choose li {
  margin: 10px 0;
  font-size: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.why-choose li:hover {
  transform: translateX(12px);
  color: #003366;
}

/* Footer Section */
.contact {
  background-color: #034295;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.contact h2 {
  font-size: 1.7rem;
  margin-bottom: 15px;
}

.contact p {
  max-width: 700px;
  margin: 0 auto;
}

/* Scroll + Hover Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section, footer {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

section:nth-of-type(1) { animation-delay: 0.3s; }
section:nth-of-type(2) { animation-delay: 0.6s; }
section:nth-of-type(3) { animation-delay: 0.9s; }
footer { animation-delay: 1.2s; }

